home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / dskut / wrap10.zip / EXAMPLES.DOC < prev    next >
Text File  |  1992-09-01  |  3KB  |  95 lines

  1.  
  2. ================================================================================
  3.            WRAPPER.SYS :  Ver. 1.0, Copyright (1992) by Philip B. Gardner
  4.            WRAPP86.SYS :  Ver. 1.0, Copyright (1992) by Philip B. Gardner
  5.           DEBUGNXT.SYS :  Ver. 1.0, Copyright (1992) by Philip B. Gardner
  6.           DEBUGN86.SYS :  Ver. 1.0, Copyright (1992) by Philip B. Gardner
  7. ================================================================================
  8.  
  9. EXAMPLE CONFIGURATIONS:
  10.  
  11. ;-------------------------------------------------------------------------------
  12. ; load a TSR high early because it fits better
  13.  
  14. dos=high,umb
  15. device=c:\qemm\qemm386.sys r:2 ram rom st:m fr=c000
  16. device=c:\qemm\loadhi.sys /r:1 wrapper.sys /m4 c:\vesa\orchid\orchdvesa.com
  17. shell=c:\dos\command.com c:\dos /e:256 /p
  18. buffers=20
  19. files=35
  20.  
  21. ;-------------------------------------------------------------------------------
  22. ; load a TSR disk cache before STACKER for better performance
  23.  
  24. dos=high,umb
  25. device=c:\386max\386max.sys pro=c:\386max\386max.pro
  26. device=wrapper.sys c:\386MAX\qcache.exe /s:2048 /l:1024 /&u+ /5-
  27. device=c:\386max\386load.sys prog=c:\stacker\stacker.com c:\stackvol.dsk @
  28. device=c:\stacker\sswap.com c:\stackvol.dsk /sync
  29. shell=c:\dos\command.com c:\dos /e:256 /p
  30. buffers=20
  31. files=35
  32.  
  33. ;-------------------------------------------------------------------------------
  34. ; initiate a ram disk
  35.  
  36. dos=high,umb
  37. device=himem.sys
  38. device=emm386.exe ram i=b000-b7ff i=cc00-efff frame=cc00
  39. rem=create ram disk as drive d:
  40. devicehigh=c:\dos5\ramdrive.sys 1024 /e
  41. rem=leaves no resident memory
  42. device=wrapper.sys c:\dos\command.com /c md d:\dos
  43. device=wrapper.sys c:\dos\command.com /c copy c:\dos\*.* d:\dos
  44. rem=or even use a batch file
  45. rem=device=wrapper.sys c:\dos\command.com /c c:\dos\initramd.bat
  46. rem=now set shell= to the faster shell
  47. shell=d:\dos\command.com d:\dos /e:256 /p
  48. buffers=20
  49. files=35
  50.  
  51. ;-------------------------------------------------------------------------------
  52. ; run a memory browser during config.sys
  53.  
  54. dos=high,umb
  55. device=c:\qemm\qemm386.sys r:2 ram rom st:m fr=c000
  56. rem=may terminate as a TSR or leave no resident memory
  57. device=wrapper.sys c:\qemm\mft.exe
  58. shell=c:\dos\command.com c:\dos /e:256 /p
  59. buffers=20
  60. files=35
  61.  
  62. ;-------------------------------------------------------------------------------
  63. ; debug a device driver initialization using MS-DOS's DEBUG
  64.  
  65. dos=high,umb
  66. device=wrapper.sys /d/c-/m32 c:\dos\debug.exe
  67. device=himem.sys
  68. device=emm386.exe ram i=b000-b7ff i=cc00-efff frame=cc00
  69. rem=or load high
  70. rem=devicehigh=wrapper.sys /d/c-/m32 c:\dos\debug.exe
  71. rem=trap debugger at 1st instruction of mydevice's strategy
  72. device=debugnxt.sys
  73. device=mydevice.sys
  74. shell=c:\dos\command.com c:\dos /e:256 /p
  75. buffers=20
  76. files=35
  77.  
  78. ;-------------------------------------------------------------------------------
  79. ; debug a device driver initialization using BORLAND's TDREMOTE
  80. ; (debugs through com port to a remote machine)
  81.  
  82. dos=high,umb
  83. device=c:\uboot\wrapper.sys d:\borlandc\bin\tdremote.exe -rp1
  84. device=himem.sys
  85. device=emm386.exe ram i=b000-b7ff i=cc00-efff frame=cc00
  86. rem=or load high
  87. rem=devicehigh=c:\uboot\wrapper.sys d:\borlandc\bin\tdremote.exe -rp1
  88. rem=trap debugger at 1st instruction of mydevice's strategy
  89. device=debugnxt.sys
  90. device=mydevice.sys
  91. shell=c:\dos\command.com c:\dos /e:256 /p
  92. buffers=20
  93. files=35
  94.  
  95.